5a789bf21742543f36247c21bf91cb2a5e6a126c,jframe-plugins/jframe-pushy/src/main/java/jframe/pushy/PushyConf.java,PushyConf,init,#InputStream#,60
Before Change
synchronized static void init(InputStream is) throws Exception {
PropertyResourceBundle props = new PropertyResourceBundle(is);
try {
IOS_AUTH = props.getString(KEY_IOS_AUTH);
IOS_PASSWORD = props.getString(KEY_IOS_PASSWORD);
HOST = props.getString(KEY_HOST);
HOST_PORT = props.getString(KEY_HOST_PORT);
After Change
public synchronized static void init(InputStream is) throws Exception {
try {
Properties props = new Properties();
IOS_AUTH = props.getProperty(KEY_IOS_AUTH).trim();
IOS_PASSWORD = props.getProperty(KEY_IOS_PASSWORD).trim();
HOST = props.getProperty(KEY_HOST).trim();
HOST_PORT = props.getProperty(KEY_HOST_PORT).trim();